-
-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2021-05-04のJS: Babel 7.14.0、RxJS 7.0.0、Safari 14.1 #863
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
||
Flexbox Gapのサポート、macOSで`input`要素の`type`属性で`date`と`time`と`datetime-local`のサポートが追加されています。また、speech recognitionを含むWeb Speech API、MediaRecorder API、WebMのサポートなども追加されています。 | ||
JavaScriptではClass Fields、WekRefのサポート、i18n APIのサポート改善、WebAssemblyのThreadingのサポートなどが含まれています。 | ||
また、Private Click Measurementをデフォルトで有効化、Storage AccessAPIの更新やWeb Inspectorのアップデートなども含まれています。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[textlint] reported by reviewdog 🐶
Don't repeat "また" in 2 phrases (no-start-duplicated-conjunction)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Babel 7.14.0がリリースされています。
2021-04のTC39ミーティングでStage 4となったclass fields/private methodsなどを
@babel/preset-env
がデフォルトでサポートするようになりました。そのため、
@babel/plugin-proposal-class-properties
と@babel/plugin-proposal-private-methods
を個別のプラグインとして入れる必要はなくなっています。また、Node.jsのESMからCommonJSのモジュールをインポートする際の相互運用性を向上させるオプションとして、
importInterop: "node"
オプションの追加されています。importInterop: "node"
option for module transforms by nicolo-ribaudo · Pull Request #12838 · babel/babelまたTypeScript 4.3のサポート、Stage 1のES Proposalである
async do
expressionのサポートなども含まれています。RxJS 7.0.0がリリースされています。
RxJS 7.0.0ではファイルサイズが6.xに対して53%程度に小さくなっています。
また、TypeScriptの型の修正やAPIの一貫性の修正などが含まれています。
機能追加として、Async IteratorやReadable Streamの対応、
animationFrames
、share(config)
の追加などが含まれています。次のスライドと動画でも詳しく紹介されています。
New WebKit Features in Safari 14.1 | WebKitでは、Safari 14.1の変更点について書かれています。
Flexbox Gapのサポート、macOSで
input
要素のtype
属性でdate
とtime
とdatetime-local
のサポートが追加されています。また、speech recognitionを含むWeb Speech API、MediaRecorder API、WebMのサポートなども追加されています。JavaScriptではClass Fields、WekRefのサポート、i18n APIのサポート改善、WebAssemblyのThreadingのサポートなどが含まれています。
また、Private Click Measurementをデフォルトで有効化、Storage AccessAPIの更新やWeb Inspectorのアップデートなども含まれています。